home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / Source / MSG Demo 1.4.source Folder / Demo ƒ / Wipes ƒ / Four corner wipe.c < prev    next >
Text File  |  1994-04-15  |  3KB  |  80 lines

  1. /**********************************************************************\
  2.  
  3. File:        Four corner wipe.c
  4.  
  5. Purpose:    Graphic effect from offscreen bitmap to main window (on
  6.             screen).  See comments below for more description.
  7.  
  8. This program is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2 of the License, or
  11. (at your option) any later version.
  12.  
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with this program in a file named "GNU General Public License".
  20. If not, write to the Free Software Foundation, 675 Mass Ave,
  21. Cambridge, MA 02139, USA.
  22.  
  23. \**********************************************************************/
  24.  
  25. #include "timing.h"
  26.  
  27. #define CorrectTime 1
  28. #define theWindowHeight (boundsRect.bottom-boundsRect.top)
  29. #define theWindowWidth (boundsRect.right-boundsRect.left)
  30.  
  31. pascal short FourCorner(GrafPtr sourceGrafPtr, GrafPtr destGrafPtr, Rect boundsRect);
  32.  
  33. /* Take 4 bars, two on each axis, and move them towards different corners.
  34.    This means lots of overlap copying, but the timing masks it and Quickdraw
  35.    may even take care of some of it. (?) */
  36.  
  37. pascal short FourCorner(GrafPtr sourceGrafPtr, GrafPtr destGrafPtr, Rect boundsRect)
  38. {
  39.     Rect        vsource1,hsource1,vsource2,hsource2;
  40.     int            vbar,hbar,cx,cy;
  41.     int            VBarGap, HBarGap;
  42.     
  43.     VBarGap=theWindowWidth/100;
  44.     HBarGap=theWindowHeight/100;
  45.  
  46.     vbar=VBarGap;
  47.     hbar=HBarGap;
  48.     cx = boundsRect.left + theWindowWidth/2;
  49.     cy = boundsRect.top + theWindowHeight/2;
  50.     vsource1.top=vsource2.top=boundsRect.top;
  51.     hsource2.left=hsource1.left=boundsRect.left;
  52.     vsource1.bottom=vsource2.bottom=boundsRect.bottom;
  53.     hsource1.right=hsource2.right=boundsRect.right;
  54.     while (vbar+boundsRect.left<cx+VBarGap)
  55.     {
  56.         StartTiming();
  57.         vsource1.left=cx-vbar;
  58.         vsource1.right=vsource1.left+VBarGap;
  59.         vsource2.right=cx+vbar;
  60.         vsource2.left=vsource2.right-VBarGap;
  61.         hsource1.top=cy-hbar;
  62.         hsource1.bottom=hsource1.top+HBarGap;
  63.         hsource2.bottom=cy+hbar;
  64.         hsource2.top=hsource2.bottom-HBarGap;
  65.         CopyBits(&(sourceGrafPtr->portBits), &(destGrafPtr->portBits),
  66.             &vsource1, &vsource1, 0, 0L);
  67.         CopyBits(&(sourceGrafPtr->portBits), &(destGrafPtr->portBits),
  68.             &hsource1, &hsource1, 0, 0L);
  69.         CopyBits(&(sourceGrafPtr->portBits), &(destGrafPtr->portBits),
  70.             &vsource2, &vsource2, 0, 0L);
  71.         CopyBits(&(sourceGrafPtr->portBits), &(destGrafPtr->portBits),
  72.             &hsource2, &hsource2, 0, 0L);
  73.         vbar+=VBarGap;
  74.         hbar+=HBarGap;
  75.         TimeCorrection(CorrectTime);
  76.     }
  77.     
  78.     return 0;
  79. }
  80.